From a9fc2ae6bc87841d5e0cfd26f848f26b94da056e Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Thu, 3 Nov 2005 02:44:41 +0100 Subject: [PATCH] Fix handling of child in forkHelper. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendCheckpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendCheckpoint.py b/tools/python/xen/xend/XendCheckpoint.py index a3a7084558..8ea93a834a 100644 --- a/tools/python/xen/xend/XendCheckpoint.py +++ b/tools/python/xen/xend/XendCheckpoint.py @@ -177,7 +177,7 @@ def forkHelper(cmd, fd, inputHandler, closeToChild): if closeToChild: child.tochild.close() - thread = threading.Thread(target = slurp, args = (child.childerr)) + thread = threading.Thread(target = slurp, args = (child.childerr,)) thread.start() try: -- 2.30.2